DataSource for Entity Framework in WPF
C1.LiveLinq.LiveViews Namespace / View<T> Class / OrderByDescending<TKey> Method
The type of the key returned by keySelector.
A function to extract a key from an element.

In This Topic
    OrderByDescending<TKey> Method (View<T>)
    In This Topic
    Sorts the elements of a view in descending order.
    Syntax
    'Declaration
     
    Public Function OrderByDescending(Of TKey)( _
       ByVal keySelector As Expression(Of Func(Of T,TKey)) _
    ) As OrderedView(Of T)
    public OrderedView<T> OrderByDescending<TKey>( 
       Expression<Func<T,TKey>> keySelector
    )

    Parameters

    keySelector
    A function to extract a key from an element.

    Type Parameters

    TKey
    The type of the key returned by keySelector.

    Return Value

    A view whose elements are sorted in descending order according to a key.
    See Also